home *** CD-ROM | disk | FTP | other *** search
/ Champak 66 / Vol 66.iso / games / bailer.swf / scripts / frame_1 / PlaceObject2_20_119 / CLIPACTIONRECORD onClipEvent(enterFrame).as next >
Encoding:
Text File  |  2013-04-24  |  247 b   |  14 lines

  1. onClipEvent(enterFrame){
  2.    par = Math.ceil(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
  3.    if(par == 0)
  4.    {
  5.       par = 1;
  6.    }
  7.    else if(par >= 100)
  8.    {
  9.       par = 100;
  10.       _root.play();
  11.    }
  12.    bar._xscale = par;
  13. }
  14.